@charset "UTF-8";
@font-face {
  font-family: Aemstel;
  src: url("Aemstel-LineOutside.ttf");
}
.aemstel {
  font-family: Aemstel;
}

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: inherit;
}

body {
  font-family: SourceHanSansSC, Arial, sans-serif;
  font-size: 14px;
  max-width: 2560px;
  margin: 0 auto;
  overflow-x: hidden;
  background: #fff;
  color: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.header .logo-box {
  width: 16.34%;
  float: left;
  height: 89px;
  line-height: 89px;
  position: relative;
  padding-right: 15px;
}
.header .logo-box .logo {
  max-width: 100%;
  vertical-align: middle;
  /* 垂直居中 */
}
.header .nav {
  height: 89px;
  background: #202020;
  position: relative;
  z-index: 2;
  font-size: 16px;
  color: #fff;
}
.header .nav ul {
  width: 83.66%;
  padding-top: 37px;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.header .nav li {
  position: relative;
  white-space: nowrap;
  height: 30px;
  line-height: 30px;
  text-align: center;
  padding: 0 15px;
}
.header .nav li.active {
  background: #F37608;
  color: #fff;
  border-radius: 15px;
}
.header .nav li:hover ul {
  display: block;
}
.header .nav li ul {
  display: none;
  position: absolute;
  z-index: 200;
  top: 100%;
  left: 50%;
  width: unset;
  padding: 10px 0;
  background: #F37608;
  border-radius: 15px;
  transform: translateX(-50%);
}
.header .nav li ul li {
  width: 100%;
  text-align: center;
  font-size: 16px;
}
.header .nav li ul li:hover {
  background: #ffa500;
}
.header .nav li ul li:hover ul {
  display: block !important;
}
.header .nav li ul li ul {
  display: none !important;
  top: 0;
  left: 100%;
  transform: translateX(0);
}
.header .nav a {
  color: white;
  text-decoration: none;
}

.banner {
  position: relative;
}
.banner .swiper-container {
  margin-bottom: -2px;
}
.banner .swiper-slide img {
  width: 100%;
}
.banner .swiper-pagination-bullet-active {
  background-color: #F37608;
}

.category {
  position: relative;
  text-align: center;
}
.category .title {
  font-size: 27px;
  color: #292929;
  font-weight: bold;
}
.category .desc {
  font-size: 16px;
  color: #292929;
  margin-top: 6px;
}

.youshi-nav {
  background: #F37608;
}
.youshi-nav ul {
  display: flex;
  justify-content: space-between;
  margin: 0 -40px;
}
.youshi-nav ul li {
  padding-top: 35px;
  padding-bottom: 30px;
  border-right: 1px solid #FFAF24;
  flex: 1;
  color: #fff;
  text-align: center;
}
.youshi-nav ul li:last-child {
  border: none;
}
.youshi-nav ul li .title {
  padding-bottom: 20px;
}
.youshi-nav ul li .desc {
  font-size: 16px;
  line-height: 1.5;
}

/* Products Section Styles */
.products {
  padding-top: 42px;
  background: #f5f5f5;
}
.products .pro-navs {
  padding-top: 18px;
  text-align: center;
}
.products .pro-navs .dot {
  text-align: center;
  margin-bottom: 28px;
}
.products .pro-navs ul {
  margin: 0 auto;
  display: inline-block;
}
.products .pro-navs ul li {
  float: left;
  padding: 0 26px;
  height: 27px;
  line-height: 27px;
  color: #F37608;
  font-size: 16px;
  text-align: center;
  border: 1px solid #F37608;
  border-radius: 5px;
  margin: 0 13px;
}
.products .pro-navs ul li.active {
  background: #F37608;
  color: #fff;
}
.products .product-lists {
  margin: 0 -27px;
  padding-top: 45px;
  display: none;
  padding-bottom: 34px;
}
.products .product-lists.active {
  display: block;
}
.products .product-lists .product-grid {
  width: 25%;
  float: left;
  padding: 0 27px;
  margin-bottom: 40px;
}
.products .product-lists .product-grid .product-item {
  transition-duration: 0.3s;
  padding: 19px 23px 0 23px;
  background: #fff;
  overflow: visible;
}
.products .product-lists .product-grid:hover .product-item {
  transform: translate(-3px, -3px);
  box-shadow: #cdcdcd 6px 7px 20px 0px;
}
.products .product-lists .img-box {
  padding-top: 68.7%;
}
.products .product-lists .title {
  text-align: center;
  font-size: 15px;
  margin-top: 16px;
  position: relative;
}
.products .product-lists .pro-info {
  text-align: center;
  position: relative;
}
.products .product-lists .pro-info .dot {
  padding: 15px 0 27px 0;
}

.btn {
  width: 21px;
  height: 21px;
  line-height: 21px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  background: #F37608;
  border-radius: 50%;
  margin: 0 auto;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.more {
  width: 112px;
  height: 27px;
  border-radius: 5px;
  border: 1px solid #292929;
  text-align: center;
  line-height: 27px;
  color: #292929;
  font-weight: 500;
  font-size: 16px;
  margin: 0 auto;
  margin-top: 5px;
  transition-duration: 0.3s;
}
.more:hover {
  background: #F37608;
  color: #fff;
  border: none;
}

/* Company Strength Section Styles */
.company-strength {
  background-color: #008c69;
  color: white;
  padding: 50px 0;
  height: 46vw;
  position: relative;
}
.company-strength::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  background: #F37608;
  opacity: 0.9;
}
.company-strength .strength-info {
  padding-top: 5.7vw;
  width: 54.5%;
  float: right;
  position: relative;
  z-index: 2;
  display: none;
}
.company-strength .strength-info.active {
  display: block;
}
.company-strength .strength-info .desc {
  padding-top: 40px;
  padding-left: 140px;
  font-size: 16px;
  line-height: 2.3;
  text-align: justify;
}
.company-strength .big-entitle {
  color: #fff;
  font-family: Georgia;
  font-weight: 400;
  font-size: 130px;
  color: #FFFFFF;
  font-style: italic;
  padding-right: 70px;
  margin-right: 15px;
}
.company-strength .title-right {
  padding-top: 45px;
}
.company-strength .title-right .cntitle {
  color: #fff;
  font-size: 36px;
  margin-bottom: 10px;
}
.company-strength .title-right .entitle {
  color: #fff;
  font-size: 14px;
}
.company-strength .strength-list {
  position: absolute;
  bottom: 5.9vw;
  width: 100%;
}
.company-strength .strength-list .container {
  position: relative;
}
.company-strength .strength-list .strength-item {
  width: 33.33%;
  float: left;
  height: 175px;
  background: rgba(255, 255, 255, 0.57);
  text-align: center;
  position: relative;
  z-index: 3;
  cursor: pointer;
  transition-duration: 0.3s;
}
.company-strength .strength-list .strength-item.active {
  background: #004EA1;
}
.company-strength .strength-list .strength-item.active * {
  color: #fff !important;
}
.company-strength .strength-list .strength-icon {
  position: absolute;
  top: -20px;
  left: 16.666%;
  transform: translateX(-50%);
  z-index: 3;
  transition-duration: 0.3s;
}
.company-strength .strength-list .category {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -62%);
  white-space: nowrap !important;
}
.company-strength .strength-list .big-entitle {
  color: #F37608;
  font-size: 79px;
  padding-right: 18px;
  margin-right: 0;
  width: 100px;
}
.company-strength .strength-list .title-right {
  padding-top: 25px;
  padding-left: 100px;
}
.company-strength .strength-list .title-right .cntitle {
  color: #F37608;
  font-size: 30px;
  margin-bottom: 6px;
}
.company-strength .strength-list .title-right .entitle {
  color: #F37608;
  font-size: 12px;
}

.category_2 .title {
  color: #292929;
  font-size: 27px;
}
.category_2 .title span {
  font-family: "Aemstel";
  color: #E2E2E2;
  font-size: 27px;
  padding-left: 10px;
}
.category_2 .desc {
  font-size: 16px;
  color: #292929;
  padding-top: 6px;
}
.category_2 .more {
  float: right;
  margin-top: -27px;
}

.case-studies {
  padding-bottom: 90px;
}
.case-studies .case-banner {
  padding-top: 68px;
  padding-bottom: 62px;
  margin-bottom: 57px;
}
.case-studies .case-banner .banner-info {
  display: inline-block;
  text-align: center;
}
.case-studies .case-banner .title {
  font-size: 36px;
  color: #fff;
}
.case-studies .case-banner .desc {
  font-size: 22.6px;
  color: #fff;
  margin-top: 35px;
  margin-bottom: 46px;
}
.case-studies .case-banner .tel-box {
  display: inline-block;
  padding: 0 23px;
  height: 51px;
  line-height: 51px;
  color: #272727;
  font-size: 23px;
  background: #F37608;
  border-radius: 5px;
  border: 1px solid #F37608;
  text-align: center;
}
.case-studies .line {
  width: 1204px;
  height: 3px;
  background: #E2E2E2;
  position: relative;
  margin-top: 44px;
}
.case-studies .line::after {
  content: "";
  position: absolute;
  width: 117px;
  height: 3px;
  background: #F37608;
  left: 125px;
}

.case-list {
  height: 306px;
  margin-top: 42px;
  position: relative;
}
.case-list .case-info {
  font-size: 15px;
  color: #000;
  width: 211px;
  height: 100%;
  float: left;
  padding-right: 38px;
  padding-left: 21px;
  padding-top: 77px;
  background: #E2E2E2;
  position: relative;
  text-align: justify;
}
.case-list .case-info .dot {
  padding: 16px 0;
}
.case-list .case-info .desc {
  font-size: 13px;
  line-height: 24px;
}
.case-list .case-info .btn {
  margin: unset;
  transform: unset;
  left: 40px;
  bottom: 72px;
}
.case-list .case-info .swiper-pagination {
  text-align: left;
  padding-left: 20px;
}
.case-list .case-info .swiper-pagination .swiper-pagination-current {
  font-size: 16px;
  color: #F37608;
}
.case-list .case-info .swiper-pagination .swiper-pagination-total {
  font-size: 11px;
  color: 0;
}
.case-list .swiper-box {
  width: 100%;
  position: absolute;
  left: 211px;
  top: 0;
  background: #E2E2E2;
}
.case-list .img-box {
  overflow: hidden;
}
.case-list .bg-img {
  height: 306px;
  transition-duration: 0.3s;
}
.case-list .case-box {
  width: 25%;
  float: left;
  padding: 0 11px;
  margin-bottom: 35px;
}
.case-list .case-item {
  text-align: center;
  transition-duration: 0.3s;
}
.case-list .case-item:hover .bg-img {
  transform: scale(1.1);
}

/* About Us Section Styles */
.about-us {
  max-width: 1920px;
  margin: 0 auto;
  margin-top: 37px;
  margin-bottom: 85px;
}
.about-us .title {
  font-family: Aemstel;
  font-size: 84px;
  color: #E2E2E2;
}
.about-us .about-info {
  width: 47%;
  float: left;
}
.about-us .about-info .dot {
  margin-top: 32px;
  margin-bottom: 34px;
}
.about-us .about-info .about-content {
  font-size: 14px;
  color: #353535;
  line-height: 24px;
  text-align: justify;
  text-indent: 2em;
}
.about-us .about-img {
  width: 53%;
  float: right;
  padding-left: 62px;
  margin-top: -70px;
}
.about-us .about-img .img-box {
  height: 100%;
}
.about-us .about-img .company-name {
  font-size: 27px;
  color: #292929;
  padding-bottom: 20px;
}
.about-us .about-img .company-name span {
  font-size: 16px;
  display: block;
  margin-top: 6px;
}
.about-us .about-nav {
  margin-top: 30px;
}
.about-us .about-nav li {
  float: left;
  width: calc(33.333% - 9px);
  font-size: 14px;
  color: #1F1F1F;
  text-align: center;
  transition-duration: 0.3s;
}
.about-us .about-nav li img {
  vertical-align: middle;
  margin-right: 25px;
}
.about-us .about-nav li:nth-last-child(1) {
  margin-right: 0;
}

/* News Section Styles */
.news {
  padding: 70px 0;
  margin-bottom: 44px;
}
.news .category {
  background: none;
}
.news .category .title {
  font-size: 36px;
}
.news .category .desc {
  color: #000;
}
.news .news-nav {
  margin-top: 27px;
  text-align: center;
}
.news .news-nav ul {
  display: inline-block;
}
.news .news-nav ul li {
  width: 164px;
  margin: 0 14px;
  height: 41px;
  line-height: 41px;
  font-size: 18px;
  text-align: center;
  border: 1px solid #DEDEDE;
  float: left;
  transition-duration: 0.3s;
}
.news .news-nav ul li.active {
  background: #F37608;
  color: #fff;
  border: 1px solid #F37608;
}
.news .news-box {
  margin-top: 43px;
  padding-left: 30.33%;
  position: relative;
}
.news .news-box .news-img {
  position: absolute;
  right: 69.67%;
  top: 0;
  height: 558px;
  width: 700px;
}
.news .news-box .news-img .bg-img {
  height: 100%;
  width: 100%;
}
.news .news-one {
  color: #333;
  border-radius: 5px;
  transition-duration: 0.3s;
  width: 50%;
  float: left;
  margin-bottom: 30px;
  padding-left: 37px;
}
.news .news-one:nth-child(n+4) {
  margin-bottom: 0;
}
.news .news-one .news-item {
  background: #E2E2E2;
  transition-duration: 0.3s;
  padding: 44px 35px 35px 35px;
}
.news .news-one .news-item:hover {
  box-shadow: 0px 5px 5px 0px #E3E3E3;
}
.news .news-one .news-item:hover .news-more {
  color: #F37608;
}
.news .news-one .news-time {
  margin-bottom: 29px;
}
.news .news-one .news-time .day {
  font-size: 23.5px;
  color: #1C1C1C;
}
.news .news-one .news-time .day svg {
  height: 20px;
}
.news .news-one .news-time .year {
  font-size: 14px;
  margin-top: 2px;
}
.news .news-one .news-info {
  position: relative;
}
.news .news-one .title {
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 13px;
}
.news .news-one .desc {
  font-size: 14px;
  line-height: 1.9;
  color: #7C7C7C;
  height: 48px;
  margin-bottom: 17px;
  text-align: justify;
}
.news .news-one .news-more {
  font-size: 12px;
  color: #1C1C1C;
}

/* Footer Section Styles */
.footer {
  background: #1c1c1c;
  color: #fff;
  font-size: 14px;
}
.footer .bottom {
  padding-top: 44px;
  padding-bottom: 53px;
}
.footer .bottom .ft-logo {
  padding-bottom: 35px;
}
.footer .bottom .ft-addr {
  float: left;
}
.footer .bottom .ft-addr li {
  margin-bottom: 15px;
}
.footer .bottom .ft-addr .links a {
  padding: 0 4px;
}
.footer .bottom .qr {
  text-align: right;
  float: right;
  color: #fff;
  width: 268px;
  font-size: 14px;
}
.footer .bottom .qr img {
  max-width: 100% !important;
  width: 87px !important;
  height: auto !important;
  margin-bottom: 9px;
}
.footer .bottom .copyright {
  margin-top: 80px;
  border-top: 1px solid #464646;
  color: #b7b7b7;
  padding-top: 30px;
}
.footer .bottom .bt-form {
  color: #fff;
  background: #F37608;
  padding: 45px 70px;
  margin-top: -114px;
  margin-bottom: 52px;
}
.footer .bottom .bt-form .title {
  font-size: 27px;
  position: relative;
  padding-bottom: 50px;
}
.footer .bottom .bt-form .title::after {
  content: "";
  position: absolute;
  opacity: 0.46;
  background: #fff;
  height: 1px;
  top: 12px;
  width: 74.57%;
  right: 0;
}
.footer .bottom .bt-form .title::before {
  content: "";
  position: absolute;
  opacity: 0.46;
  background: #fff;
  top: 8px;
  width: 8px;
  height: 8px;
  left: 25%;
  border-radius: 50%;
}
.footer .bottom .bt-form .title span {
  font-size: 16px;
  display: block;
  padding-top: 4px;
}
.footer .bottom .bt-form .form-group {
  float: left;
  width: 23.86%;
  margin-right: 4.8%;
}
.footer .bottom .bt-form .form-group label {
  font-size: 14px;
  margin-bottom: 21px;
  display: block;
}
.footer .bottom .bt-form .form-group input {
  width: 253px;
  background: #fff;
  height: 46px;
  line-height: 46px;
  padding: 0 10px;
}
.footer .bottom .bt-form .form-group.form-group-msg {
  width: unset;
}
.footer .bottom .bt-form .form-group.form-group-msg input {
  float: left;
}
.footer .bottom .bt-form .form-group.form-group-msg .btn-submit {
  float: left;
  width: 131px;
  height: 47px;
  background: #C36512;
  line-height: 47px;
  text-align: center;
  color: #fff;
  font-size: 16px;
}
.footer .bottom .bt-form .box h5 {
  display: none;
}
.footer .bottom .bt-form .box tr {
  border: none;
}
.footer .ft-nav {
  text-align: right;
  padding-top: 30px;
}
.footer .ft-nav .icon {
  float: right;
  margin-left: 33px;
}
.footer .ft-nav .icon img {
  height: 30px !important;
  width: auto !important;
}

.show-md {
  display: block;
}

.show-xs {
  display: none;
}

@media screen and (max-width: 1250px) {
  .container {
    padding: 0 15px;
  }
  .products .product-lists .product-grid {
    padding: 0 10px;
  }
  .footer .bottom .bt-form .form-group input {
    width: 100%;
  }
  .footer .bottom .bt-form .form-group.form-group-msg input {
    width: calc(100% - 131px);
  }
}
@media screen and (max-width: 790px) {
  .show-md {
    display: none;
  }
  .show-xs {
    display: block;
  }
  .youshi-nav ul {
    margin: 0 -15px;
  }
  .youshi-nav ul li {
    padding: 18px 0;
  }
  .youshi-nav ul li .title {
    padding-bottom: 12px;
  }
  .youshi-nav ul li .desc {
    font-size: 12px;
  }
  .products {
    padding-top: 30px;
  }
  .products .pro-navs {
    padding-top: 15px;
  }
  .products .pro-navs ul {
    flex-wrap: wrap;
    padding: 0 10px;
    justify-content: center;
  }
  .products .pro-navs ul li {
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    flex: unset;
    padding: 0 10px;
    white-space: nowrap;
    margin: 0 4px 8px 4px;
  }
  .products .product-lists {
    padding-top: 15px;
    margin: 0 -16px;
  }
  .products .product-lists .product-grid {
    width: 50%;
    padding: 0 8px;
    margin-bottom: 16px;
  }
  .products .product-lists .product-grid .product-item {
    padding: 8px 8px 0 8px;
  }
  .products .product-lists .title {
    font-size: 14px;
  }
  .products .product-lists .pro-info .dot {
    padding: 12px 0;
  }
  .products .product-lists .btn {
    width: 18px;
    height: 18px;
    line-height: 18px;
  }
  .category .title {
    font-size: 30px;
  }
  .category .title span {
    font-size: 31px;
  }
  .category .desc {
    font-size: 12px;
  }
  .about-us {
    margin-bottom: 20px;
  }
  .about-us .title {
    font-size: 48px;
  }
  .about-us .about-info .dot {
    margin: 12px 0;
  }
  .about-us .about-info {
    width: 100%;
    padding: 0;
  }
  .about-us .about-info .about-content {
    padding-top: 16px;
    padding-right: 0;
  }
  .about-us .about-info .more {
    padding-top: 20px;
    padding-bottom: 60px;
    overflow: hidden;
  }
  .about-us .about-info .more .line {
    width: 26%;
  }
  .about-us .about-info .more::after {
    font-size: 100px;
    top: 20px;
  }
  .about-us .about-img {
    display: none;
  }
  .about-us .about-nav {
    width: 100%;
    bottom: -20px;
  }
  .about-us .about-nav li {
    font-size: 18px;
    height: 50px;
    line-height: 50px;
  }
  .about-us .about-nav li img {
    margin-right: 8px;
    width: 28px;
  }
  .case-studies {
    padding-bottom: 20px;
  }
  .case-studies .case-banner {
    padding: 30px 0;
    margin-bottom: 40px;
  }
  .case-studies .case-banner .banner-info {
    display: block;
  }
  .case-studies .case-banner .title {
    font-size: 30px;
  }
  .case-studies .case-banner .desc {
    font-size: 18px;
    margin: 20px 0;
  }
  .case-studies .case-banner .tel-box {
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  .case-studies .line {
    width: 100%;
  }
  .case-studies .case-list {
    margin: 30px -11px 0 -11px;
    height: 50vw;
    overflow: hidden;
  }
  .case-studies .case-list .case-info {
    font-size: 14px;
    width: 140px;
    padding: 16px 12px;
  }
  .case-studies .case-list .case-info .dot {
    padding: 8px 0;
  }
  .case-studies .case-list .case-info .desc {
    font-size: 12px;
    line-height: 1.5;
  }
  .case-studies .case-list .case-info .btn {
    bottom: 30%;
    left: 16px;
  }
  .case-studies .case-list .swiper-box {
    left: 140px;
  }
  .case-studies .case-list .swiper-box .bg-img {
    height: 222px;
  }
  .case-studies .case-list .case-box {
    width: 50%;
  }
  .case-studies .case-list .case-box:nth-child(n+5) {
    display: none;
  }
  .case-studies .case-list .title {
    font-size: 14px;
    height: 35px;
    line-height: 35px;
  }
  .category_2 .title {
    font-size: 24px;
  }
  .category_2 .title span {
    font-size: 18px;
  }
  .category_2 .desc {
    font-size: 14px;
  }
  .more {
    width: 82px;
    font-size: 14px;
  }
  .news {
    padding: 30px 0;
  }
  .news .news-box {
    margin-top: 20px;
    padding-left: 0;
  }
  .news .news-box .news-img {
    display: none;
  }
  .news .news-one {
    width: 100%;
    float: unset;
    margin: 12px 0;
    padding: 0;
  }
  .news .news-one .news-item {
    padding: 16px 10px;
  }
  .news .news-one .news-time {
    width: 100px;
    margin-bottom: 12px;
  }
  .news .news-one .news-time .day {
    font-size: 26px;
  }
  .news .news-one .news-info {
    padding: 0;
  }
  .news .news-one .news-info .title {
    font-size: 16px;
  }
  .news .news-one .news-info .desc {
    font-size: 12px;
    height: unset;
  }
  .footer .bottom {
    padding-top: 25px;
    padding-bottom: 100px;
  }
  .footer .bottom .ft-logo {
    text-align: center;
    padding-bottom: 18px;
  }
  .footer .bottom .bt-form {
    padding: 25px;
    margin-top: -70px;
    margin-bottom: 25px;
  }
  .footer .bottom .bt-form .title {
    font-size: 22px;
    padding-bottom: 30px;
  }
  .footer .bottom .bt-form .title::after {
    width: 50%;
  }
  .footer .bottom .bt-form .title::before {
    left: 50%;
  }
  .footer .bottom .bt-form .title span {
    font-size: 12px;
  }
  .footer .bottom .bt-form .form-group {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 15px;
  }
  .footer .bottom .bt-form .form-group input {
    height: 38px;
    line-height: 38px;
  }
  .footer .bottom .bt-form .form-group label {
    margin-bottom: 10px;
  }
  .footer .bottom .bt-form .form-group:nth-child(n+2) {
    margin-right: 0;
  }
  .footer .bottom .bt-form .form-group.form-group-msg {
    width: 100%;
  }
  .footer .bottom .bt-form .form-group.form-group-msg input {
    width: calc(100% - 100px);
  }
  .footer .bottom .bt-form .form-group.form-group-msg .btn-submit {
    height: 38px;
    line-height: 38px;
    width: 100px;
  }
  .footer .bottom .ft-addr {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
  .footer .bottom .ft-addr li {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .footer .bottom .qr {
    padding-top: 20px;
    width: 100%;
    text-align: center;
  }
  .footer .bottom .qr .ft-nav {
    text-align: center;
    display: inline-block;
    padding-top: 12px;
  }
  .footer .bottom .qr .ft-nav .icon {
    margin-left: 0;
    padding: 0 10px;
  }
  .footer .bottom .qr .ft-nav .icon img {
    height: 24px !important;
  }
}
@media screen and (max-width: 470px) {
  .about-us .about-nav {
    padding: 0 10px;
  }
  .about-us .about-nav li {
    font-size: 14px;
    padding: 0 6px;
    height: 40px;
    line-height: 40px;
  }
  .about-us .about-nav li i {
    font-size: 20px;
    margin-right: 2px;
  }
}/*# sourceMappingURL=styles.css.map */